home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
vbcc
/
machines
/
amigappc
/
include
/
setjmp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-06-24
|
153 b
|
13 lines
/* setjmp.h - PowerPC */
#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef int jmp_buf[24];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif